    /*Registration Form*/
    #form-container6 {
        display: flex;
        justify-content: center;
        align-items: flex-start; /* Align to the top */
        /*background-color: #f5f5f5;*/
        margin-top: 40px;
        margin-bottom: 40px;
    }
    #form-box7 {
        background-color: #fff;
        padding: 30px; /* Increased padding */
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        width: 550px; /* Increased width */
    }
    #register-form label {
        /*display: block;*/
        margin-bottom: 5px;
        font-weight: bold;
    }
    #register-form input {
        width: 100%;
        padding: 8px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        display: block; /* Ensure input is exactly below the label */
    }
    /* Modal Styling */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .modal-content {
        background-color: white;
        margin: 10% auto;
        padding: 20px;
        border-radius: 5px;
        width: 353px;
        text-align: center;
        position: relative;
    }
    .input-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Aligns text on the left */
        width: 100%;
    }
    .input-group label {
        font-weight: bold;
        display: block; /* Ensures label takes full width */
        text-align: left; /* Keeps label aligned horizontally */
        margin-bottom: 5px;
    }
    .input-group input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    .close {
        position: absolute;
        top: 3px;
        right: 7px;
        font-size: 20px;
        cursor: pointer;
    }
    .success-message {
        color: green;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }
    /* Flex container for City, State, and Zipcode */
    #location-fields {
        display: flex;
        gap: 15px; /* Space between each field */
    }
    /* Ensure labels are above inputs */
    #location-fields label {
        display: block;
        font-weight: bold;
    }
    /* Make sure inputs fit within their section */
    #location-fields input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    /* Form Styling */
    #form-box7 {
        text-align: center;
    }
    form label {
        display: block;
        text-align: left;
        margin-bottom: 5px;
        font-weight: bold;
        color: #555;
    }
    form input, form button {
        width:300px;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 4px;
        font-size: 14px;
    }
    form button {
        color: #fff;
        background-color: #007bff;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    form button:hover {
        background-color: #0056b3;
    }
    /* Responsive Design */
    /*@media (max-width: 600px) {*/
    /*    .modal-content {*/
    /*        width: 90%;*/
    /*    }*/
    /*}*/
    .popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 9999;
    }
    .popup-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        width: 300px;
        border-radius: 10px;
        text-align: center;
        position: relative;
    }
    .popup.success .popup-content {
        border: 2px solid green;
        color: green;
    }
    .popup.error .popup-content {
        border: 2px solid red;
        color: red;
    }
    .close-btn {
        position: absolute;
        top: 5px;
        right: 10px;
        font-size: 18px;
        cursor: pointer;
    }
    /* Gender selection styling */
    .gender-container {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }
    .gender-container label {
        display: flex;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
    }
    .gender-container input {
        margin-right: 5px;
        transform: scale(1.2); /* Make radio buttons slightly larger */
    }
    .input-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%; 
        max-width: 500px; /* Adjust width as needed */
        border-radius: 5px;
    }
    .input-container div {
        flex: 1;
        position: relative;
        margin-right: 10px; /* Space between inputs */
    }
    .input-container input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    #togglePassword {
        position: absolute;
        right: 10px;
        top: 60%;
        transform: translateY(-50%);
        cursor: pointer;
    }